-
-
Notifications
You must be signed in to change notification settings - Fork 97
pkg: Update react #3555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
pkg: Update react #3555
Conversation
|
Size Change: +1.91 kB (+2.45%) Total Size: 79.7 kB
ℹ️ View Unchanged
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Benchmark
Benchmark suite | Current: 10d6e30 | Previous: 2c44ab0 | Ratio |
---|---|---|---|
normalizeLong |
498 ops/sec (±2.59% ) |
527 ops/sec (±1.06% ) |
1.06 |
denormalizeLong |
296 ops/sec (±2.33% ) |
267 ops/sec (±2.74% ) |
0.90 |
denormalizeLong donotcache |
1035 ops/sec (±0.16% ) |
982 ops/sec (±0.29% ) |
0.95 |
denormalizeShort donotcache 500x |
1635 ops/sec (±0.16% ) |
1623 ops/sec (±0.18% ) |
0.99 |
denormalizeShort 500x |
866 ops/sec (±1.68% ) |
847 ops/sec (±1.94% ) |
0.98 |
denormalizeShort 500x withCache |
6152 ops/sec (±0.08% ) |
6462 ops/sec (±0.19% ) |
1.05 |
queryShort 500x withCache |
2785 ops/sec (±0.14% ) |
2642 ops/sec (±0.17% ) |
0.95 |
buildQueryKey All |
54217 ops/sec (±0.17% ) |
55826 ops/sec (±0.20% ) |
1.03 |
query All withCache |
7243 ops/sec (±0.15% ) |
6834 ops/sec (±0.44% ) |
0.94 |
denormalizeLong with mixin Entity |
274 ops/sec (±2.28% ) |
277 ops/sec (±2.70% ) |
1.01 |
denormalizeLong withCache |
6517 ops/sec (±0.16% ) |
6440 ops/sec (±0.36% ) |
0.99 |
denormalizeLong All withCache |
6997 ops/sec (±0.15% ) |
6501 ops/sec (±0.43% ) |
0.93 |
denormalizeLong Query-sorted withCache |
7241 ops/sec (±0.20% ) |
6842 ops/sec (±0.26% ) |
0.94 |
denormalizeLongAndShort withEntityCacheOnly |
1706 ops/sec (±0.23% ) |
1640 ops/sec (±0.58% ) |
0.96 |
getResponse |
5621 ops/sec (±1.28% ) |
5471 ops/sec (±1.07% ) |
0.97 |
getResponse (null) |
6595468 ops/sec (±0.51% ) |
7028386 ops/sec (±0.61% ) |
1.07 |
getResponse (clear cache) |
275 ops/sec (±1.68% ) |
271 ops/sec (±2.17% ) |
0.99 |
getSmallResponse |
3053 ops/sec (±0.16% ) |
3091 ops/sec (±0.14% ) |
1.01 |
getSmallInferredResponse |
2325 ops/sec (±0.34% ) |
2241 ops/sec (±0.09% ) |
0.96 |
getResponse Collection |
5550 ops/sec (±1.47% ) |
5497 ops/sec (±1.18% ) |
0.99 |
get Collection |
5806 ops/sec (±0.20% ) |
5637 ops/sec (±0.25% ) |
0.97 |
get Query-sorted |
6663 ops/sec (±0.36% ) |
6643 ops/sec (±0.40% ) |
1.00 |
setLong |
527 ops/sec (±0.26% ) |
531 ops/sec (±0.38% ) |
1.01 |
setLongWithMerge |
242 ops/sec (±0.17% ) |
222 ops/sec (±0.72% ) |
0.92 |
setLongWithSimpleMerge |
259 ops/sec (±0.18% ) |
237 ops/sec (±0.81% ) |
0.92 |
setSmallResponse 500x |
951 ops/sec (±0.07% ) |
937 ops/sec (±0.11% ) |
0.99 |
This comment was automatically generated by workflow using github-action-benchmark.
808fc20
to
40065f6
Compare
bf66bb9
to
3a6833d
Compare
3a6833d
to
10d6e30
Compare
This PR contains the following updates:
19.1.1
->19.2.0
19.1.1
->19.2.0
0.17.0
->0.18.0
19.1.1
->19.2.0
Release Notes
facebook/react (react)
v19.2.0
Compare Source
Below is a list of all new features, APIs, and bug fixes.
Read the React 19.2 release post for more information.
New React Features
<Activity>
: A new API to hide and restore the UI and internal state of its children.useEffectEvent
is a React Hook that lets you extract non-reactive logic into an Effect Event.cacheSignal
(for RSCs) lets your know when thecache()
lifetime is over.New React DOM Features
resume
: to resume a prerender to a stream.resumeAndPrerender
: to resume a prerender to HTML.resumeToPipeableStream
: to resume a prerender to a stream.resumeAndPrerenderToNodeStream
: to resume a prerender to HTML.prerender
APIs to return apostponed
state that can be passed to theresume
APIs.Notable changes
<ViewTransition>
Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.prerender
,renderToReadableStream
) to server-side-rendering APIs for Node.js:
IDs generated by useIdAll Changes
React
<Activity />
was developed over many years, starting beforeClassComponent.setState
(@acdlite @sebmarkbage and many others)%o
placeholder (@eps1lon #34198)useDeferredValue
loop in popstate event (@acdlite #32821)useDeferredValue
(@acdlite #34376)cacheSignal
(@sebmarkbage #33557)React DOM
:
for IDs generated byuseId
(@sebmarkbage, @eps1lon: #32001, #33342#33099, #33422)nonce
to be used on hoistable styles (@Andarist #32461)React.use
insideReact.lazy
-ed Component (@hi-ogawa #33941)progressiveChunkSize
option for server-side-rendering APIs (@sebmarkbage #33027)React Server Components
<img>
and<link>
using hints before they're rendered (@sebmarkbage #34604)filterStackFrame
(@eps1lon #33707)React Reconciler
on*
handlers to account for upcoming experimental APIsConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.